home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / iwss_detect.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  60 lines

  1. #
  2. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. #  This script is released under the GNU GPL v2
  4. #
  5. if(description)
  6. {
  7.  script_id(17200);
  8.  script_version("$Revision: 1.1 $");
  9.  
  10.  name["english"] = "Trend Micro IWSS console management detection";
  11.  
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "
  15. The remote host appears to run the Trend Micro Interscan Web Security Suite.
  16.  
  17. Make sure that only authorized hosts can connect to this service, as the
  18. information of its existence may help an attacker to make more sophisticated
  19. attacks against the remote network.
  20.  
  21. Solution : Filter incoming traffic to this port
  22. Risk factor : Low";
  23.  
  24.  script_description(english:desc["english"]);
  25.  
  26.  summary["english"] = "Checks for Trend Micro IWSS web console management";
  27.  
  28.  script_summary(english:summary["english"]);
  29.  
  30.  script_category(ACT_GATHER_INFO);
  31.   
  32.  script_copyright(english:"This script is Copyright (C) 2005 David Maciejak");
  33.  
  34.  family["english"] = "Misc.";
  35.  family["francais"] = "Divers";
  36.  script_family(english:family["english"], francais:family["francais"]);
  37.  script_dependencie("http_version.nasl");
  38.  
  39.  script_require_ports(1812);
  40.  exit(0);
  41. }
  42.  
  43. #
  44. # The script code starts here
  45. #
  46. include("http_func.inc");
  47. include("http_keepalive.inc");
  48.  
  49. port = 1812;
  50. if(get_port_state(port))
  51. {
  52.  req = http_get(item:"/logon.jsp", port:port);
  53.  rep = http_keepalive_send_recv(port:port, data:req);
  54.  if( rep == NULL ) exit(0);
  55.  if("<title>Trend Micro InterScan Web Security Suite</title>" >< rep)
  56.  {
  57.    security_note(port);
  58.  }
  59. }
  60.